home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 22 / Amiga Format AFCD22 (Jan 1998, Issue 106).iso / -in_the_mag- / netbsd / up2lower.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1997-11-21  |  69b  |  8 lines

  1. #!/bin/sh
  2.  
  3. for f in *.txt 
  4. do
  5. mv $f `echo $f | tr [A-Z] [a-z]`
  6. done
  7.  
  8.